home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / CONINIT.CC < prev    next >
C/C++ Source or Header  |  1992-03-29  |  641b  |  24 lines

  1. /**********************************************************************
  2.  *  
  3.  *  NAME:           _bccinit.c
  4.  *  
  5.  *  DESCRIPTION:    initialize the Borland compatibility library
  6.  *  
  7.  *  M O D I F I C A T I O N   H I S T O R Y
  8.  *
  9.  *  when        who                 what
  10.  *  -------------------------------------------------------------------
  11.  *  10/31/91    J. Alan Eldridge    created
  12.  *  
  13.  *********************************************************************/
  14.  
  15. #include    "gppconio.h"
  16.  
  17. int _gppconio_init;
  18.  
  19. struct _gppconio_init_s {
  20.   _gppconio_init_s() { gppconio_init(); }
  21. };
  22.  
  23. static struct _gppconio_init_s x;
  24.